home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / (A)TA / (A)TAV.ADF / VirusX3.10 / source.zoo / virusx.i < prev   
Text File  |  1988-12-31  |  1KB  |  41 lines

  1. /* Prototypes for functions defined in virusx.c */
  2.  
  3. #ifndef __NOPROTO
  4. #ifndef __PROTO
  5. #define __PROTO(a) a
  6. #endif
  7. #else
  8. #ifndef __PROTO
  9. #define __PROTO(a) ()
  10. #endif
  11. #endif
  12.  
  13. void main __PROTO((int argc,
  14.                    unsigned char **argv));
  15. int DoLittle __PROTO((void));
  16. int SetUp __PROTO((void));
  17. int WhoChanged __PROTO((void));
  18. int CheckBlock __PROTO((void));
  19. int DoInstall __PROTO((int un));
  20. int CheckMemoryForViruses __PROTO((void));
  21. int ShowAscii __PROTO((int key));
  22. int WaitForNewSize __PROTO((void));
  23. int BuildITBodyText __PROTO((unsigned char *text,
  24.                              int type));
  25. int MyRequest __PROTO((unsigned char *string,
  26.                        int type));
  27. int DoStats __PROTO((void));
  28. int PV __PROTO((int num,
  29.                 unsigned char *name,
  30.                 int howmany));
  31. int Out __PROTO((int num,
  32.                  unsigned char *name));
  33. int ReadBlock __PROTO((void));
  34. int CheckMemoryForIRQVirus __PROTO((void));
  35. int CheckDriveForIRQ __PROTO((unsigned char *drivename));
  36. int WriteFP __PROTO((int fp,
  37.                      unsigned char *string));
  38. int cleanup __PROTO((int val));
  39. int CheckFileForIRQ __PROTO((unsigned char *fname,
  40.                              int flag));
  41.